#Python program -5 to return largest of 3 numbers
def max_of_three(a, b, c):
    if a > b and a > c:
        print(a, 'Is The Largest Number')
        return
    elif b > a and b > c:
        print(b, 'Is The Largest Number')
        return
    else:
        print(c, 'Is The Largest Number')
        return

a = int(input('Enter the value of a: '))
b = int(input('Enter the value of b: '))
c = int(input('Enter the value of c: '))

x = max_of_three(a, b, c)
print(x)